home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / windows2 / hp22d3.zip / REFGUIDE / REFPREF.TXT < prev    next >
Text File  |  1991-05-16  |  5KB  |  133 lines

  1.  
  2.  
  3.  
  4.  
  5.      _______________________________________________________________________
  6.                                                             Preface   1
  7.     ________________________________________________________________________
  8.  
  9.  
  10.     PREFACE
  11.  
  12.  
  13.     ABOUT THE PADTALK REFERENCE GUIDE
  14.  
  15.     This manual is a complete reference to the PADtalk scripting language,
  16.     as well as a technical guide to the HyperPAD authoring environment.
  17.  
  18.     The first three chapters are for the beginning PADtalk programmer. They
  19.     explain how to script using the Script Editor, how scripts receive
  20.     messages via handlers and functions, how to write PADtalk statements,
  21.     and how messages are passed between objects.
  22.  
  23.     The next six chapters present advanced topics for the intermediate
  24.     PADtalk programmer including containers, flow control structures,
  25.     chunking expressions, numeric operators, and colors.
  26.  
  27.     The last four chapters contain full descriptions of each PADtalk
  28.     message, command, property, and function.
  29.  
  30.  
  31.     CHAPTER SUMMARIES
  32.  
  33.  
  34.     CHAPTER ONE: WHAT'S REALLY HAPPENING?
  35.  
  36.     A look behind the scenes in HyperPAD, including the different components
  37.     of the HyperPAD authoring environment and an introduction to the PADtalk
  38.     scripting language.
  39.  
  40.     CHAPTER TWO: PADTALK SCRIPTS
  41.  
  42.     How to use the Script Editor to write scripts and PADtalk statements.
  43.  
  44.     CHAPTER THREE: THE OBJECT HIERARCHY
  45.  
  46.     A look at HyperPAD's object hierarchy, the path along which messages are
  47.     passed.
  48.  
  49.     CHAPTER FOUR: CONTAINERS
  50.  
  51.     The places in HyperPAD where values can be stored.
  52.  
  53.     CHAPTER FIVE: THE CURRENT OBJECT
  54.  
  55.     Detailed discussion of HyperPAD facilities for referencing special
  56.     objects like the object with the focus, the object that initially
  57.     receives a message, and the object whose script is executing.
  58.  
  59.  
  60.  
  61.      _______________________________________________________________________
  62.                                                             Preface   2
  63.     ________________________________________________________________________
  64.  
  65.  
  66.     CHAPTER SIX: CONTROL STRUCTURES
  67.  
  68.     How to control the flow of execution of the statements within a script
  69.     through the use of control structures.
  70.  
  71.     CHAPTER SEVEN: CHUNK EXPRESSIONS
  72.  
  73.     How to work with chunk expressions, special PADtalk constructs that
  74.     allow you to specify any piece of information in a container.
  75.  
  76.     CHAPTER EIGHT: NUMERIC OPERATORS
  77.  
  78.     How to add complex expressions to your scripts.
  79.  
  80.     CHAPTER NINE: COLORS
  81.  
  82.     How colors are referred to in HyperPAD and displayed on the screen by
  83.     your computer.
  84.  
  85.     CHAPTER TEN: MESSAGES
  86.  
  87.     A complete reference to the messages generated by HyperPAD, including a
  88.     detailed description of each message.
  89.  
  90.     CHAPTER ELEVEN: COMMANDS
  91.  
  92.     An alphabetical listing of every built-in command available in PADtalk.
  93.     Each command's description includes its syntax and examples.
  94.  
  95.     CHAPTER TWELVE: PROPERTIES
  96.  
  97.     The full list of HyperPAD properties, are used to control the appearance
  98.     and behavior of objects. The properties of buttons, fields, pages,
  99.     backgrounds, pads, the message box, the menu bar, the status bar, and
  100.     the tool box are described.
  101.  
  102.     CHAPTER THIRTEEN: FUNCTIONS
  103.  
  104.     A complete list and discussion of HyperPAD's built-in functions.
  105.  
  106.  
  107.  
  108.      _______________________________________________________________________
  109.                                                             Preface   3
  110.     ________________________________________________________________________
  111.  
  112.  
  113.     NOTATION CONVENTIONS
  114.  
  115.     As you read this manual, keep in mind the following notational
  116.     conventions.
  117.  
  118.     All PADtalk words are displayed in courier type, like: openPage,
  119.     graphicsCard(), and sort.
  120.  
  121.     Words that appear within angle brackets (<  >) are required to complete
  122.     the PADtalk statement. For example, <filename> indicates that you must
  123.     supply a filename.
  124.  
  125.     Words that appear within square brackets ([  ]) are optional parameters
  126.     which may be included if you need them.
  127.  
  128.     PADtalk is not case sensitive. For example OpenPage, openPage, and
  129.     openPage refer to the same word. In this manual, however, all PADtalk
  130.     language elements begin with a lowercase character. Any elements
  131.     consisting of more than one word also begin with a lowercase character;
  132.     any word within a language element, however, is capitalized. Examples:
  133.     openPage, graphicsCard, insertPoint.